home *** CD-ROM | disk | FTP | other *** search
/ Aminet 13 / Aminet 13 - August 1996.iso / Aminet / gfx / conv / WhirlGIF20.lha / WhirlGIF / src.original / Makefile next >
Makefile  |  1996-03-03  |  582b  |  44 lines

  1.  
  2. #
  3. # Makefile for whirlgif utility
  4. #
  5.  
  6. #####################################
  7. # Choose your favorite compiler.
  8. #
  9. # GNU C
  10. CC = gcc
  11. #
  12. # standard
  13. #CC = cc
  14.  
  15. #####################################
  16. # Optimization flags
  17. #
  18. #  GNU C
  19. #OPTIMIZE= -fcombine-regs -O
  20. # standard
  21. OPTIMIZE = -O
  22.  
  23. #####################################
  24. # Debug flags
  25. #
  26. #DEBUG = -g
  27. #DEBUG = -ggdb
  28.  
  29. #####################################
  30. #
  31. #
  32. CFLAGS    =  $(DEBUG) $(OPTIMIZE) $(INCLUDEDIR)
  33.  
  34. all: whirlgif
  35.  
  36. whirlgif:
  37.     $(CC) $(CFLAGS) -o whirlgif whirlgif.c
  38.  
  39.  
  40. # DO NOT DELETE THIS LINE
  41.  
  42. whirlgif: whirlgif.h
  43. whirlgif: whirlgif.c
  44.